home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000375_fdc@columbia.edu_Thu Feb 14 13:03:42 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  37 lines

  1. Article: 13219 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit Server
  6. Date: 14 Feb 2002 13:03:29 -0500
  7. Organization: Columbia University
  8. Lines: 20
  9. Message-ID: <a4gu5h$h26$1@watsol.cc.columbia.edu>
  10. References: <336f652d.0202131549.6754c557@posting.google.com> <a4eudp$8q6$1@watsol.cc.columbia.edu> <336f652d.0202140957.59a47457@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1013709813 3390 128.59.39.139 (14 Feb 2002 18:03:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 14 Feb 2002 18:03:33 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13219
  16.  
  17. In article <336f652d.0202140957.59a47457@posting.google.com>,
  18. Shifeux <shifeux@hotmail.com> wrote:
  19. : Thanks frank, This works perfectly. I had previously read the Case
  20. : Study you refer to and was just unclear exactly how to write it.  The
  21. : command  /MOVE-TO:xxxx was throwing me off. I appreciate your help.
  22. In general:
  23.  
  24.   set <parameter> <value>
  25.  
  26. sets the given parameter to the given value globally, so this value is
  27. used by all affected commands until another SET command is given to change
  28. it.  Whereas:
  29.  
  30.   <command> /<parameter>:<value>
  31.  
  32. sets the parameter to the given value only for this command.  Unfortunately,
  33. we don't have total symmetry between SET commands and switches.
  34.  
  35. - Frank
  36.